ListBoxGetCurSel

 

ListBoxGetCurSel 함수는 윈도우 Control의 ListBox 에서 선택된 데이터의 Index(위치)값을 불러온다.

 

@ListBoxGetCurSel(char* class_name);

 

함수인자

char* class_name       편집기의 윈도우 control ListBox오브젝트의 Class Name 이 된다.

 

예제

int index=@ListBoxGetCurSel("ListBox1");

문장설명 : ClassName이 ListBox1이라는 ListBox 에서 현재 선택된 데이터의 index값을 돌려준다. 만약, 선택된 데이터가 위에서 3번째라면 Index=2값을 돌려준다. 왜냐하면 Index는 0부터 시작한다.

 

관련항목

@ListBoxAddString()

@ListBoxDeleteString()

@ListBoxFillDir()

@ListBoxFillFile()

@ListBoxGetCurSel()

@ListBoxGetSel()

@ListBoxGetSelCount()

@ListBoxGetText()

@ListBoxResetContent()

@ListBoxSetCurSel()